type compress/flate.compressor

28 uses

	compress/flate (current package)
		deflate.go#L81: type compressor struct {
		deflate.go#L88: 	fill      func(*compressor, []byte) int // copy data to window
		deflate.go#L89: 	step      func(*compressor)             // process window
		deflate.go#L126: func (d *compressor) fillDeflate(b []byte) int {
		deflate.go#L166: func (d *compressor) writeBlock(tokens []token, index int) error {
		deflate.go#L183: func (d *compressor) fillWindow(b []byte) {
		deflate.go#L233: func (d *compressor) findMatch(pos int, prevHead int, prevLength int, lookahead int) (length, offset int, ok bool) {
		deflate.go#L285: func (d *compressor) writeStoredBlock(buf []byte) error {
		deflate.go#L334: func (d *compressor) encSpeed() {
		deflate.go#L371: func (d *compressor) initDeflate() {
		deflate.go#L383: func (d *compressor) deflate() {
		deflate.go#L516: func (d *compressor) fillStore(b []byte) int {
		deflate.go#L522: func (d *compressor) store() {
		deflate.go#L532: func (d *compressor) storeHuff() {
		deflate.go#L541: func (d *compressor) write(b []byte) (n int, err error) {
		deflate.go#L556: func (d *compressor) syncFlush() error {
		deflate.go#L571: func (d *compressor) init(w io.Writer, level int) (err error) {
		deflate.go#L577: 		d.fill = (*compressor).fillStore
		deflate.go#L578: 		d.step = (*compressor).store
		deflate.go#L581: 		d.fill = (*compressor).fillStore
		deflate.go#L582: 		d.step = (*compressor).storeHuff
		deflate.go#L586: 		d.fill = (*compressor).fillStore
		deflate.go#L587: 		d.step = (*compressor).encSpeed
		deflate.go#L596: 		d.fill = (*compressor).fillDeflate
		deflate.go#L597: 		d.step = (*compressor).deflate
		deflate.go#L604: func (d *compressor) reset(w io.Writer) {
		deflate.go#L629: func (d *compressor) close() error {
		deflate.go#L702: 	d    compressor